home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / misc / xref_v1.1.lha / XRef / Tools / rexx / rexxxref.i < prev    next >
Encoding:
Text File  |  1995-01-09  |  1.3 KB  |  61 lines

  1. ;
  2. ; $PROJECT: rexxxref.library
  3. ;
  4. ; $VER: rexxxref.i 1.1 (08.01.95)
  5. ;
  6. ; by
  7. ;
  8. ; Stefan Ruppert , Windthorststraße 5 , 65439 Flörsheim , GERMANY
  9. ;
  10. ; (C) Copyright 1995
  11. ; All Rights Reserved !
  12. ;
  13. ; $HISTORY:
  14. ;
  15. ; 08.01.95 : 001.001 : initial
  16. ;
  17.  
  18.         IFND REXXXREF_I
  19. REXXXREF_I SET 1
  20.  
  21. ;-----------------------------------------------------------------------
  22.  
  23.         INCLUDE "exec/types.i"
  24.         INCLUDE "exec/libraries.i"
  25.         INCLUDE "exec/lists.i"
  26.         INCLUDE "exec/semaphores.i"
  27.         INCLUDE "utility/tagitem.i"
  28.  
  29.         INCLUDE "rexxxref_rev.i"
  30.  
  31. ;-----------------------------------------------------------------------
  32.  
  33.    STRUCTURE RexxXRef,LIB_SIZE
  34.         ULONG   rxb_SysBase
  35.         ULONG   rxb_DOSBase
  36.         ULONG   rxb_IntuitionBase
  37.         ULONG   rxb_UtilityBase
  38.         ULONG   rxb_XRefBase
  39.         ULONG   rxb_RexxSysBase
  40.         ULONG   rxb_SegList
  41.    LABEL RexxXRef_SIZEOF
  42.  
  43. ;-----------------------------------------------------------------------
  44.  
  45. CALL MACRO <Function_Name>
  46.         xref _LVO\1
  47.         jsr _LVO\1(A6)
  48.      ENDM
  49.  
  50. ;-----------------------------------------------------------------------
  51.  
  52. GO   MACRO <Function_Name>
  53.         xref _LVO\1
  54.         jmp _LVO\1(A6)
  55.      ENDM
  56.  
  57. ;----------------------------------------------------------------------
  58.  
  59.         ENDC    ; REXXXREF_I
  60.  
  61.